Show AllShow All

MROUND

See Also

Returns a number rounded to the desired multiple.

If this function is not available, and returns the #NAME? error, install and load the Analysis ToolPak add-in.

ShowHow?

Syntax

MROUND(number,multiple)

Number    is the value to round.

Multiple    is the multiple to which you want to round number.

Remark

MROUND rounds up, away from zero, if the remainder of dividing number by multiple is greater than or equal to half the value of multiple.

Example

The example may be easier to understand if you copy it to a blank worksheet.

Show How?

 
1
2
3
4
5
A B
Formula Description (Result)
=MROUND(10, 3) Rounds 10 to a nearest multiple of 3 (9)
=MROUND(-10, -3) Rounds 10 to a nearest multiple of 3 (-9)
=MROUND(1.3, 0.2) Rounds 1.3 to a nearest multiple of 0.2 (1.4)
=MROUND(5, -2) Returns an error, because -2 and 5 have different signs (#NUM!)